@media (max-width: 900px) {
    
    /* --- 1. GLOBAL VARIABLES & RESET --- */
        :root {
            --col-purple: #4A144B;
            --col-pink: #ff3399;
            --col-gold: #d4af37;
            
            --bg-white: #ffffff;
            --bg-off-white: #f9fafb;
            --bg-champagne: #fffbf2;
            
            --grad-primary: linear-gradient(135deg, var(--col-purple) 0%, var(--col-pink) 100%);
            --grad-blob: linear-gradient(45deg, #ff3399, #ff9966);
            
            --text-dark: #222;
            --text-grey: #666;
        }

        /* --- 3. HEADER --- */
        header {
            height: 60px; background: white;
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            z-index: 20; flex-shrink: 0; position: relative;
        }
        .logo-text { font-weight: 700; font-size: 18px; color: var(--col-purple); }
        .logo-heart { color: var(--col-pink); margin-right: 5px; }
        .menu-btn { color: var(--col-purple); font-size: 20px; cursor: pointer; }

        /* --- 5. FEATURES --- */
        .features-row {
            padding: 40px 0 20px 0; background: white;
            display: flex; justify-content: space-around;
        }
        .feat-item { text-align: center; }
        .feat-icon { font-size: 20px; margin-bottom: 5px; }
        .feat-lbl { font-size: 10px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; }

        /* --- 6. SECTION TITLES --- */
        .sec-head { padding: 0 20px 15px 20px; text-align: center; }
        .sec-lbl { font-size: 10px; color: var(--col-pink); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
        .sec-tit { font-size: 22px; font-weight: 700; color: var(--col-purple); line-height: 1.2; font-family: 'Playfair Display', serif; }

        /* --- 7. WHY RUKHSAT (Stacked Cards) --- */
        .why-section { padding: 20px 20px 40px 20px; background-color: var(--bg-off-white); }
        .value-stack { display: flex; flex-direction: column; gap: 15px; }
        
        .value-card {
            background: white; border-radius: 16px; padding: 20px 20px 20px 25px;
            position: relative; box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid white; overflow: hidden;
        }
        .value-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; }
        
        /* Border Colors */
        .b-purple::before { background: var(--col-purple); }
        .b-pink::before { background: var(--col-pink); }
        .b-gold::before { background: var(--col-gold); }

        .problem-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; opacity: 0.5; }
        .prob-text { font-size: 10px; text-decoration: line-through; color: #666; font-weight: 600; text-transform: uppercase; }
        
        .solution-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
        .sol-icon { 
            width: 35px; height: 35px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; 
        }
        .sol-title { font-size: 15px; font-weight: 700; color: var(--text-dark); }
        .sol-desc { font-size: 11px; color: #666; line-height: 1.5; padding-left: 47px; }

        /* --- 8. PROCESS (White) --- */
        .section-process { padding: 40px 20px; background: white; }
        .process-list { display: flex; flex-direction: column; gap: 25px; position: relative; padding-left: 10px; }
        .p-line { 
            position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; 
            background: linear-gradient(to bottom, var(--col-purple), var(--col-pink)); 
        }
        .p-item { display: flex; align-items: flex-start; gap: 20px; position: relative; z-index: 1; }
        .p-bubble {
            width: 35px; height: 35px; background: white; border: 2px solid var(--col-purple);
            color: var(--col-purple); font-weight: 700; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; flex-shrink: 0;
        }
        .p-item:nth-child(even) .p-bubble { border-color: var(--col-pink); color: var(--col-pink); }
        .p-content h4 { font-size: 14px; font-weight: 700; color: var(--col-purple); margin-bottom: 2px; }
        .p-content p { font-size: 11px; color: var(--text-grey); }

        /* --- 9. SUCCESS STORIES (Gold/Warm) --- */
        .section-success { padding: 50px 0px 100px; background: var(--bg-champagne); border-top: 1px solid #f3e5ab; }
        .h-scroll { display: flex; overflow-x: auto; gap: 15px; padding: 0 20px; scrollbar-width: none; }
        .h-scroll::-webkit-scrollbar { display: none; }
        .snap-card { flex: 0 0 85%; scroll-snap-align: center; }

        .story-card-compact {
            background: white; border-radius: 15px; overflow: hidden;
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1); border: 1px solid white;
        }
        .story-header {
            height: 80px; background: linear-gradient(to right, #fff0f5, #fff);
            display: flex; align-items: center; padding: 0 20px; position: relative;
        }
        .s-avatar {
            width: 45px; height: 45px; border-radius: 50%; background: var(--col-purple); color: white;
            display: flex; justify-content: center; align-items: center; font-family: serif; font-style: italic; font-size: 16px; margin-right: 12px;
        }
        .s-names { font-size: 15px; font-weight: 700; color: var(--col-purple); line-height: 1.1; }
        .s-loc { font-size: 9px; color: #888; text-transform: uppercase; }
        .s-privacy { position: absolute; top: 10px; right: 10px; color: var(--col-gold); font-size: 12px; }
        .story-body { padding: 20px; }
        .s-quote { font-size: 11px; color: #555; font-style: italic; line-height: 1.5; margin-bottom: 15px; }
        .i-tag { display: inline-block; background: #fffdf5; border: 1px solid #f3e5ab; padding: 5px 10px; border-radius: 5px; font-size: 10px; font-weight: 600; color: var(--col-purple); }
        
        .success-section { padding:50px 0; }
       
}